crypto/rc4.Cipher.s (field)
14 uses
crypto/rc4 (current package)
rc4.go#L19: s [256]uint32
rc4.go#L38: c.s[i] = uint32(i)
rc4.go#L42: j += uint8(c.s[i]) + key[i%k]
rc4.go#L43: c.s[i], c.s[j] = c.s[j], c.s[i]
rc4.go#L53: for i := range c.s {
rc4.go#L54: c.s[i] = 0
rc4.go#L73: x := c.s[i]
rc4.go#L75: y := c.s[j]
rc4.go#L76: c.s[i], c.s[j] = y, x
rc4.go#L77: dst[k] = v ^ uint8(c.s[uint8(x+y)])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |